home *** CD-ROM | disk | FTP | other *** search
Text File | 1994-11-18 | 2.1 KB | 47 lines | [TEXT/MPS ] |
- ##############################################################################################
- #
- # Apple Macintosh Developer Technical Support
- #
- # FKEY6 : Saves the contents of the main Macintosh screen to a PICT file.
- # Macintosh Developer Technical Support
- #
- # ScreenFKEY.make
- #
- # Copyright © 1989 Apple Computer, Inc.
- # All rights reserved.
- #
- # Versions:
- # 1.00 10/89
- #
- # Components:
- # ScreenFKEY.p October 1, 1989
- # ScreenFKEY.a October 1, 1989
- # ScreenFKEY.make October 1, 1989
- #
- # ScreenFKEY is a basic example on how to spool a PICT file to disk by replacing the
- # bottleneck PutPICProc, it saves the contents of the screen to a file. The FKEY creates
- # ten files Screen 0 through Screen 9; it is necessary to erase or rename old files when
- # the limit is reached.
- #
- # This FKEY works in any Macintosh computer and saves the screen regardless of the
- # setting of the screen; to use, it has to be added to the System file using ResEdit.
- #
- ##############################################################################################
-
- ScreenFKEY.a.o ƒ ScreenFkey.make ScreenFKEY.a
- Asm ScreenFKEY.a
- ScreenFKEY.p.o ƒ ScreenFkey.make ScreenFKEY.p
- Pascal ScreenFKEY.p
-
- SOURCES = ScreenFKEY.a ScreenFKEY.p
- OBJECTS = ScreenFKEY.a.o ScreenFKEY.p.o
-
- ScreenFkey ƒ ScreenFkey.make {OBJECTS}
- Link -w -t 'FKEY' -c 'RSED' -rt FKEY=6 -m FKEY6 -sg ScreenFKEY ∂
- {OBJECTS} ∂
- "{Libraries}"Runtime.o ∂
- "{Libraries}"Interface.o ∂
- "{PLibraries}"PasLib.o ∂
- "{PLibraries}"SANELib.o ∂
- -o ScreenFkey
-